home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / cdrecord-1.8.1 / include / stkframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  1.9 KB  |  59 lines

  1. /* @(#)stkframe.h    1.5 99/09/11 Copyright 1995 J. Schilling */
  2. /*
  3.  * Common definitions for routines that parse the stack frame.
  4.  *
  5.  * This file has to be fixed if you want to port routines which use getfp().
  6.  * Have a look at struct frame below and use it as a sample,
  7.  * the new struct frame must at least contain a member 'fr_savfp'.
  8.  */
  9. /*
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2, or (at your option)
  13.  * any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; see the file COPYING.  If not, write to
  22.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24.  
  25. #ifndef _STKFRAME_H
  26. #define _STKFRAME_H
  27.  
  28. #if defined (sun) && (defined(SVR4) || defined(__SVR4) || defined(__SVR4__))
  29. #    ifdef    i386
  30.         /*
  31.          * On Solaris 2.1 x86 sys/frame.h is not useful at all
  32.          * On Solaris 2.4 x86 sys/frame.h is buggy (fr_savfp is int!!)
  33.          */
  34. #        include <sys/reg.h>
  35. #    endif
  36. #    include <sys/frame.h>
  37.  
  38. #elif    defined (sun)
  39. #    include <machine/frame.h>
  40. #else
  41.  
  42. /*
  43.  * XXX: I hope this will be useful on other machines (no guarantee)
  44.  * XXX: It is taken from a sun Motorola system, but should also be useful
  45.  * XXX: on a i386.
  46.  * XXX: In general you have to write a sample program, set a breakpoint
  47.  * XXX: on a small function and inspect the stackframe with adb.
  48.  */
  49.  
  50. struct frame {
  51.     struct frame    *fr_savfp;    /* saved frame pointer */
  52.     int        fr_savpc;    /* saved program counter */
  53.     int        fr_arg[1];    /* array of arguments */
  54. };
  55.  
  56. #endif
  57.  
  58. #endif    /* _STKFRAME_H */
  59.